18ec8602700b215edacb68e67fa5254f44743490,library/src/main/java/com/rubengees/introduction/IntroductionFragment.java,IntroductionFragment,onCreateView,#LayoutInflater#ViewGroup#Bundle#,73

Before Change


                             Bundle savedInstanceState) {
        createViews(inflater, container);
        initViews(inflater);
        getIntroductionActivity().getStyle().applyStyleOnFragmentView(this, root);

        return root;
    }

After Change


        createViews(inflater, container);
        initViews(inflater);

        Style style = getIntroductionActivity().getStyle();

        if (style != null) {
            style.applyStyleOnFragmentView(this, root);
        }